Create content auto-fix PR #53
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a port of the equivalent workflow in mdn/content. | |
# See https://github.com/mdn/content/blob/main/.github/workflows/auto-cleanup-bot.yml | |
name: Create content auto-fix PR | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
permissions: {} | |
jobs: | |
fix: | |
if: github.repository == 'mdn/translated-content' | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
lang: | |
- es | |
- fr | |
- ja | |
- ko | |
- pt-br | |
- ru | |
- zh-cn | |
- zh-tw | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/checkout@v4 | |
with: | |
repository: mdn/content | |
path: mdn/content | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: yarn | |
cache-dependency-path: "**/yarn.lock" | |
- name: Install all yarn packages | |
run: | | |
yarn --frozen-lockfile | |
env: | |
# https://github.com/microsoft/vscode-ripgrep#github-api-limit-note | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install all yarn packages for mdn/content | |
working-directory: ${{ github.workspace }}/mdn/content | |
run: yarn --frozen-lockfile | |
env: | |
# https://github.com/microsoft/vscode-ripgrep#github-api-limit-note | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Fix flaws | |
env: | |
CONTENT_ROOT: ${{ github.workspace }}/mdn/content/files | |
CONTENT_TRANSLATED_ROOT: ${{ github.workspace }}/files | |
working-directory: ${{ github.workspace }}/mdn/content | |
run: | | |
yarn content fix-flaws --locale "${{ matrix.lang }}" | |
- name: Lint Markdown files | |
run: | | |
yarn markdownlint-cli2 --fix "**/${{ matrix.lang }}/**/*.md" | |
node ./scripts/check-url-locale.js --fix "files/${{ matrix.lang }}" | |
ls -d 2>/dev/null "files/${{ matrix.lang }}" "docs/${{ matrix.lang }}" | xargs yarn autocorrect --fix | |
yarn prettier -w "**/${{ matrix.lang }}/**/*.md" | |
cd ${{ github.workspace }}/mdn/content && yarn fix:fm --config-file ${{ github.workspace }}/.front-matter-config.json "${{ github.workspace }}/files/${{ matrix.lang }}" | |
- name: Create PR with only fixable issues | |
if: success() | |
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 | |
with: | |
commit-message: "${{ matrix.lang }}: auto-fix content issues" | |
branch: content-autofix-${{ matrix.lang }} | |
title: "[${{ matrix.lang }}] auto-fix content issues" | |
author: mdn-bot <108879845+mdn-bot@users.noreply.github.com> | |
committer: mdn-bot <108879845+mdn-bot@users.noreply.github.com> | |
body: | | |
This PR was generated by [this run](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}) of the [`auto-cleanup-bot`](https://github.com/${{ github.repository }}/blob/${{ github.ref_name }}/.github/workflows/auto-cleanup-bot.yml) workflow. | |
All issues were auto-fixed. | |
labels: | | |
automated pr | |
token: ${{ secrets.AUTOMERGE_TOKEN }} | |
- name: Create PR with notice on unfixed issues | |
if: failure() | |
uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 | |
with: | |
commit-message: "${{ matrix.lang }}: auto-fix content issues" | |
branch: content-autofix-${{ matrix.lang }} | |
title: "[${{ matrix.lang }}] auto-fix content issues" | |
author: mdn-bot <108879845+mdn-bot@users.noreply.github.com> | |
committer: mdn-bot <108879845+mdn-bot@users.noreply.github.com> | |
body: | | |
This PR was generated by the [`auto-cleanup-bot`](https://github.com/${{ github.repository }}/blob/${{ github.ref_name }}/.github/workflows/auto-cleanup-bot.yml) workflow. | |
Auto-fix was run, but additional issues found. | |
Please review the [run log](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}). | |
labels: | | |
automated pr | |
token: ${{ secrets.AUTOMERGE_TOKEN }} |